Skip to main content

Verify User Transaction PIN

PATCH /api/v1/users/{userId}/transactions/pin/{token}/verify

Description

Verify the transaction PIN for a user.

Path Parameters

NameTypeDescription
tokenstringThe token (path)
userIdstringThe user ID (path)

Request Body

  • Content Type: application/json

No request body needed for this endpoint.

Example

PATCH /api/v1/users/{userId}/transactions/pin/{token}/verify
Content-Type: application/json

Response Code: 200 - OK

Description

The PIN has been verified successfully.

Response Fields

No specific fields in the response.

Example

{
"status": "success",
"message": "PIN verified successfully"
}

Method: PATCH

>http://your-api-url/api/v1/users/{userId}/transactions/pin/{token}/verify

headers

Headers
|Content-Type |Value|
| --- | --- | --- |
|apiKey |`{{apiKey}}`|

🔑 Authentication bearer

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request PATCH \ 
--url /api/v1/users/{userId}/transactions/pin/{token}/verify \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!